/* ==========================================
   RESET & BASE
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, Roboto, Arial, sans-serif;
    background: #f7fbff;
    color: #0b2b40;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   CONTAINER & LAYOUT
========================================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}


/* ==========================================
   HERO SECTION
========================================== */
.hero {
    background: linear-gradient(135deg, #0b2b40, #136bb2);
    color: white;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    animation: fadeUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-graphic {
    flex: 1;
    min-width: 300px;
    animation: fadeRight 1s ease;
}

.graphic-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.hero-footer {
    width: 100%;
    background: #1b4d66;
    border-radius: 2rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.hero-footer i {
    margin-right: 10px;
}
/* ===================================== 
   Additional other styles  
================================   */

.acms-highlight {
    color: #f8c14f;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================
   BUTTONS & CTA
========================================== */


.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #f8c14f;
    color: #0b2b40;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 8px 16px -12px rgba(248, 193, 79, 0.4);
}

.btn-primary:hover {
    background: #ffd966;
    transform: scale(1.02);
}

.btn-outline-light {
    border: 1px solid white;
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: #e69e0e;
}

.btn-outline {
    background: transparent;
    border: 2px solid #136bb2;
    color: #136bb2;
    padding: 0.7rem 1.4rem;
    border-radius: 60px;
    font-weight: 600;
}

.btn-outline:hover {
    background: #136bb2;
    color: white;
}

/* ==========================================
   CARDS & GRIDS
========================================== */
.card-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card,
.feature-card,
.info-card,
.principle-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid #e6eef4;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card:hover,
.feature-card:hover,
.info-card:hover,
.principle-card:hover {
    transform: translateY(-5px);
    border-color: #3b8fc2;
    box-shadow: 0 24px 36px -20px #145a8d;
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #136bb2;
}

.info-card h3,
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0b2b40;
}

.card p,
.info-card p {
    color: #6c7a86;
}

/* Principles specific */
.principle-card {
    text-align: center;
}

.principle-card .number {
    background: #136bb2;
    color: rgb(6, 22, 147);
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.principle-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

/* Two column layout */
.row-2col {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.col-img {
    flex: 1;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-text {
    flex: 2;
}
/* ===================== GRID 2 COLUMN ===================== */
 .grid-2col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

/* ===================== GRID 3 COLUMN =====================  */
.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ===================== GRID 4 COLUMN ===================== */
.grid-4col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* ==========================================
   FORMS
========================================== */
.form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #dce3ea;
    border-radius: 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #136bb2;
    box-shadow: 0 0 0 3px rgba(19, 107, 178, 0.1);
}

textarea {
    resize: vertical;
}

/* ==========================================
   MODALS
========================================== */
.modal,
.brochure-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding-top: 50px;
}

.modal-content,
.brochure-content {
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    margin: auto;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.close-modal,
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
}
.modal-content {
    position: relative; /* IMPORTANT */
}
.close-btn:hover {
    color: #cf360b;
    transform: rotate(90deg);
}
.close-btn {
    transition: all 0.3s ease;
}
/* ==========================================
   TRAINING PAGE LAYOUT
========================================== */
.training-container {
    display: flex;
    min-height: 80vh;
}

.sidebar {
    width: 250px;
    background: #ffffff;
    border-right: 1px solid #e6eef4;
    padding: 1rem;
}

.sidebar h3 {
    margin-bottom: 1rem;
}

.sidebar a {
    display: block;
    padding: 0.6rem;
    color: #0b2b40;
    border-radius: 5px;
}

.sidebar a:hover {
    background: #f0f4f8;
}

.training-content {
    flex: 1;
    padding: 2rem;
    background: #f9fbfd;
}

/* ==========================================
   COMPARISON SECTION
========================================== */
.comparison {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.comparison-box {
    flex: 1;
    padding: 1.5rem;
    border-radius: 10px;
}

.comparison-box.without {
    background: #ffeaea;
    border: 1px solid #e57373;
}

.comparison-box.with {
    background: #eafff1;
    border: 2px solid #2b7fc2;
}


@media (max-width: 992px) {
    .comparison {
        flex-direction: column;
    }
}

.pill-list {
    list-style: none;
    padding: 0;
}

.pill-list li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* =========================
   TRUST BAR
========================= */
.trust-bar {
    text-align: center;
    font-size: 0.9rem;
    color: #5b7c93;
}

/* ======================== Lead Modal ======================== */

.leadModal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);    
   
    justify-content: center;
    align-items: center;
    
    backdrop-filter: blur(4px);
}

/* Modal box */
.modal-content {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 380px;
    
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    
    animation: popup 0.3s ease;
}

/* ===================== glass card ===================== */

/* Container */
.glass-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);

    color: #0e0d0d;
    transition: 0.3s ease;
}

/* Icon */
.glass-card i {
    font-size: 28px;
    margin-bottom: 12px;
    color: #0b1ae8;
}

/* Title */
.glass-card h4 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #000;
}

/* Text */
.glass-card p {
    font-size: 13px;
    color: #060606;
}

/* Hover Effect */
.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}


/* Animation */
@keyframes popup {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Inputs */
#leadForm input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.2s;
}

#leadForm input:focus {
    border-color: #007bff;
    outline: none;
}

/* Button */
#leadForm button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

#leadForm button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

/* ==========================================
   ANIMATIONS & SCROLL EFFECTS
========================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elements that animate on scroll */
.fade-in,
.principle-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card,
.impact-item,
.info-card,
.form-card,
.response-badge,
.comparison-box,
.principle-card {
    /* opacity: 0; */
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible,
.feature-card.in-view,
.impact-item.in-view,
.info-card.in-view,
.form-card.in-view,
.response-badge.in-view,
.principle-card.in-view,
.comparison-box.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Stat cards visible immediately */
.stat-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-card .fas {
    font-size: 1.5rem;   
    color: #fcfcfc;   
    transition: 0.3s; /* smooth effect */
}

.stat-card:hover .fas {
    color: hsl(48, 100%, 50%); /* hover color */
}
/* ==========================================
   UTILITY & MISC
========================================== */
.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #0b2c40;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.subhead {
    color: #6c7a86;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    border-left: 5px solid #f8c14f;
    padding-left: 1.2rem;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.badge-list span {
    background: #e3f0ff;
    color: #136bb2;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
}

.privacy-note {
    background: #f0f6fb;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.divider {
    border-top: 2px dashed #abc9e0;
    margin: 3rem 0;
}



/* ==========================================
   FLOATING WHATSAPP BUTTON
========================================== */
/* .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 22px;
    padding: 12px 15px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
} */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 22px;
    padding: 12px 17px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 992px) {
    .glass-container {
   
    grid-template-columns: repeat(2, 1fr);
    
}

    .nav-links {
        display: none;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .training-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .container {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-mini {
        min-width: 90px;
    }
}
.gold-icon {
    color: rgba(255, 230, 0, 0.918);
}
.gold-icon:hover {
    color: rgb(241, 147, 7);
    cursor: pointer;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
    box-shadow: goldenrod 0px 0px 10px 0px;
    border-radius: 50%; 
}
@media (max-width: 768px) {
    html {
        transform: scale(0.85);
        transform-origin: top left;
        width: 120%;
    }
}
@media (max-width: 768px) {
      .glass-container {
   
    grid-template-columns: repeat(1, 1fr);
    
}
    .nav-links {
        display: none;
    }
    .hero-content {
        flex-direction: column;
    }
}
@media (max-width: 768px) {

    .nav-links {
        display: flex !important;
    }

    .hero-content {
        flex-direction: row !important;
    }

    .training-container {
        flex-direction: row !important;
    }

}
/* Hide toggle in desktop */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        display: none;
        border-top: 1px solid #e6eef4;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
    }
}

/* =========================
   FOOTER CTA
========================= */

.footer-cta {
    text-align: center;
    /* margin: 3rem auto; */
    /* padding: 3rem 1.5rem; */
    background: #0667f0;
    /* 👇 This centers the block */
    /* max-width: 1000px; */
}

/* Heading */
.footer-cta h2 {
    color: #fbfbfb;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Paragraph */
.footer-cta p {
    color: #fefefe;
    max-width: 700px;
    margin: 0 auto 1rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-cta .btn-primary {
    background: white;
    color: #0b2230;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-cta {
        padding: 2rem 1rem;
    }

    .footer-cta h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }
}